home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Musique / Quod Libet / quodlibet-3.3.0-installer.exe / bin / calendar.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2014-12-31  |  26KB  |  739 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. '''Calendar printing functions
  5.  
  6. Note when comparing these calendars to the ones printed by cal(1): By
  7. default, these calendars have Monday as the first day of the week, and
  8. Sunday as the last (the European convention). Use setfirstweekday() to
  9. set the first day of the week (0=Monday, 6=Sunday).'''
  10. import sys
  11. import datetime
  12. import locale as _locale
  13. __all__ = [
  14.     'IllegalMonthError',
  15.     'IllegalWeekdayError',
  16.     'setfirstweekday',
  17.     'firstweekday',
  18.     'isleap',
  19.     'leapdays',
  20.     'weekday',
  21.     'monthrange',
  22.     'monthcalendar',
  23.     'prmonth',
  24.     'month',
  25.     'prcal',
  26.     'calendar',
  27.     'timegm',
  28.     'month_name',
  29.     'month_abbr',
  30.     'day_name',
  31.     'day_abbr']
  32. error = ValueError
  33.  
  34. class IllegalMonthError(ValueError):
  35.     
  36.     def __init__(self, month):
  37.         self.month = month
  38.  
  39.     
  40.     def __str__(self):
  41.         return 'bad month number %r; must be 1-12' % self.month
  42.  
  43.  
  44.  
  45. class IllegalWeekdayError(ValueError):
  46.     
  47.     def __init__(self, weekday):
  48.         self.weekday = weekday
  49.  
  50.     
  51.     def __str__(self):
  52.         return 'bad weekday number %r; must be 0 (Monday) to 6 (Sunday)' % self.weekday
  53.  
  54.  
  55. January = 1
  56. February = 2
  57. mdays = [
  58.     0,
  59.     31,
  60.     28,
  61.     31,
  62.     30,
  63.     31,
  64.     30,
  65.     31,
  66.     31,
  67.     30,
  68.     31,
  69.     30,
  70.     31]
  71.  
  72. class _localized_month:
  73.     _months = [ datetime.date(2001, i + 1, 1).strftime for i in range(12) ]
  74.     _months.insert(0, (lambda x: ''))
  75.     
  76.     def __init__(self, format):
  77.         self.format = format
  78.  
  79.     
  80.     def __getitem__(self, i):
  81.         funcs = self._months[i]
  82.         if isinstance(i, slice):
  83.             return [ f(self.format) for f in funcs ]
  84.         return None(self.format)
  85.  
  86.     
  87.     def __len__(self):
  88.         return 13
  89.  
  90.  
  91.  
  92. class _localized_day:
  93.     _days = [ datetime.date(2001, 1, i + 1).strftime for i in range(7) ]
  94.     
  95.     def __init__(self, format):
  96.         self.format = format
  97.  
  98.     
  99.     def __getitem__(self, i):
  100.         funcs = self._days[i]
  101.         if isinstance(i, slice):
  102.             return [ f(self.format) for f in funcs ]
  103.         return None(self.format)
  104.  
  105.     
  106.     def __len__(self):
  107.         return 7
  108.  
  109.  
  110. day_name = _localized_day('%A')
  111. day_abbr = _localized_day('%a')
  112. month_name = _localized_month('%B')
  113. month_abbr = _localized_month('%b')
  114. (MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY) = range(7)
  115.  
  116. def isleap(year):
  117.     '''Return True for leap years, False for non-leap years.'''
  118.     if not year % 4 == 0 and year % 100 != 0:
  119.         pass
  120.     return year % 400 == 0
  121.  
  122.  
  123. def leapdays(y1, y2):
  124.     '''Return number of leap years in range [y1, y2).
  125.        Assume y1 <= y2.'''
  126.     y1 -= 1
  127.     y2 -= 1
  128.     return (y2 // 4 - y1 // 4 - y2 // 100 - y1 // 100) + (y2 // 400 - y1 // 400)
  129.  
  130.  
  131. def weekday(year, month, day):
  132.     '''Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12),
  133.        day (1-31).'''
  134.     return datetime.date(year, month, day).weekday()
  135.  
  136.  
  137. def monthrange(year, month):
  138.     '''Return weekday (0-6 ~ Mon-Sun) and number of days (28-31) for
  139.        year, month.'''
  140.     if month <= month:
  141.         pass
  142.     elif not month <= 12:
  143.         raise IllegalMonthError(month)
  144.     day1 = weekday(year, month, 1)
  145.     if month == February:
  146.         pass
  147.     ndays = mdays[month] + isleap(year)
  148.     return (day1, ndays)
  149.  
  150.  
  151. class Calendar(object):
  152.     """
  153.     Base calendar class. This class doesn't do any formatting. It simply
  154.     provides data to subclasses.
  155.     """
  156.     
  157.     def __init__(self, firstweekday = 0):
  158.         self.firstweekday = firstweekday
  159.  
  160.     
  161.     def getfirstweekday(self):
  162.         return self._firstweekday % 7
  163.  
  164.     
  165.     def setfirstweekday(self, firstweekday):
  166.         self._firstweekday = firstweekday
  167.  
  168.     firstweekday = property(getfirstweekday, setfirstweekday)
  169.     
  170.     def iterweekdays(self):
  171.         '''
  172.         Return a iterator for one week of weekday numbers starting with the
  173.         configured first one.
  174.         '''
  175.         for i in range(self.firstweekday, self.firstweekday + 7):
  176.             yield i % 7
  177.         
  178.  
  179.     
  180.     def itermonthdates(self, year, month):
  181.         '''
  182.         Return an iterator for one month. The iterator will yield datetime.date
  183.         values and will always iterate through complete weeks, so it will yield
  184.         dates outside the specified month.
  185.         '''
  186.         date = datetime.date(year, month, 1)
  187.         days = (date.weekday() - self.firstweekday) % 7
  188.         date -= datetime.timedelta(days = days)
  189.         oneday = datetime.timedelta(days = 1)
  190.         while True:
  191.             yield date
  192.             
  193.             try:
  194.                 date += oneday
  195.             except OverflowError:
  196.                 break
  197.  
  198.             if date.month != month and date.weekday() == self.firstweekday:
  199.                 break
  200.                 continue
  201.             return None
  202.  
  203.     
  204.     def itermonthdays2(self, year, month):
  205.         '''
  206.         Like itermonthdates(), but will yield (day number, weekday number)
  207.         tuples. For days outside the specified month the day number is 0.
  208.         '''
  209.         for date in self.itermonthdates(year, month):
  210.             if date.month != month:
  211.                 yield (0, date.weekday())
  212.                 continue
  213.             yield (date.day, date.weekday())
  214.         
  215.  
  216.     
  217.     def itermonthdays(self, year, month):
  218.         '''
  219.         Like itermonthdates(), but will yield day numbers. For days outside
  220.         the specified month the day number is 0.
  221.         '''
  222.         for date in self.itermonthdates(year, month):
  223.             if date.month != month:
  224.                 yield 0
  225.                 continue
  226.             yield date.day
  227.         
  228.  
  229.     
  230.     def monthdatescalendar(self, year, month):
  231.         """
  232.         Return a matrix (list of lists) representing a month's calendar.
  233.         Each row represents a week; week entries are datetime.date values.
  234.         """
  235.         dates = list(self.itermonthdates(year, month))
  236.         return [ dates[i:i + 7] for i in range(0, len(dates), 7) ]
  237.  
  238.     
  239.     def monthdays2calendar(self, year, month):
  240.         """
  241.         Return a matrix representing a month's calendar.
  242.         Each row represents a week; week entries are
  243.         (day number, weekday number) tuples. Day numbers outside this month
  244.         are zero.
  245.         """
  246.         days = list(self.itermonthdays2(year, month))
  247.         return [ days[i:i + 7] for i in range(0, len(days), 7) ]
  248.  
  249.     
  250.     def monthdayscalendar(self, year, month):
  251.         """
  252.         Return a matrix representing a month's calendar.
  253.         Each row represents a week; days outside this month are zero.
  254.         """
  255.         days = list(self.itermonthdays(year, month))
  256.         return [ days[i:i + 7] for i in range(0, len(days), 7) ]
  257.  
  258.     
  259.     def yeardatescalendar(self, year, width = 3):
  260.         '''
  261.         Return the data for the specified year ready for formatting. The return
  262.         value is a list of month rows. Each month row contains up to width months.
  263.         Each month contains between 4 and 6 weeks and each week contains 1-7
  264.         days. Days are datetime.date objects.
  265.         '''
  266.         months = [ self.monthdatescalendar(year, i) for i in range(January, January + 12) ]
  267.         return [ months[i:i + width] for i in range(0, len(months), width) ]
  268.  
  269.     
  270.     def yeardays2calendar(self, year, width = 3):
  271.         '''
  272.         Return the data for the specified year ready for formatting (similar to
  273.         yeardatescalendar()). Entries in the week lists are
  274.         (day number, weekday number) tuples. Day numbers outside this month are
  275.         zero.
  276.         '''
  277.         months = [ self.monthdays2calendar(year, i) for i in range(January, January + 12) ]
  278.         return [ months[i:i + width] for i in range(0, len(months), width) ]
  279.  
  280.     
  281.     def yeardayscalendar(self, year, width = 3):
  282.         '''
  283.         Return the data for the specified year ready for formatting (similar to
  284.         yeardatescalendar()). Entries in the week lists are day numbers.
  285.         Day numbers outside this month are zero.
  286.         '''
  287.         months = [ self.monthdayscalendar(year, i) for i in range(January, January + 12) ]
  288.         return [ months[i:i + width] for i in range(0, len(months), width) ]
  289.  
  290.  
  291.  
  292. class TextCalendar(Calendar):
  293.     '''
  294.     Subclass of Calendar that outputs a calendar as a simple plain text
  295.     similar to the UNIX program cal.
  296.     '''
  297.     
  298.     def prweek(self, theweek, width):
  299.         '''
  300.         Print a single week (no newline).
  301.         '''
  302.         print self.formatweek(theweek, width),
  303.  
  304.     
  305.     def formatday(self, day, weekday, width):
  306.         '''
  307.         Returns a formatted day.
  308.         '''
  309.         if day == 0:
  310.             s = ''
  311.         else:
  312.             s = '%2i' % day
  313.         return s.center(width)
  314.  
  315.     
  316.     def formatweek(self, theweek, width):
  317.         '''
  318.         Returns a single week in a string (no newline).
  319.         '''
  320.         return (None, ' '.join)((lambda .0: pass)(theweek))
  321.  
  322.     
  323.     def formatweekday(self, day, width):
  324.         '''
  325.         Returns a formatted week day name.
  326.         '''
  327.         if width >= 9:
  328.             names = day_name
  329.         else:
  330.             names = day_abbr
  331.         return names[day][:width].center(width)
  332.  
  333.     
  334.     def formatweekheader(self, width):
  335.         '''
  336.         Return a header for a week.
  337.         '''
  338.         return (None, ' '.join)((lambda .0: pass)(self.iterweekdays()))
  339.  
  340.     
  341.     def formatmonthname(self, theyear, themonth, width, withyear = True):
  342.         '''
  343.         Return a formatted month name.
  344.         '''
  345.         s = month_name[themonth]
  346.         if withyear:
  347.             s = '%s %r' % (s, theyear)
  348.         return s.center(width)
  349.  
  350.     
  351.     def prmonth(self, theyear, themonth, w = 0, l = 0):
  352.         """
  353.         Print a month's calendar.
  354.         """
  355.         print self.formatmonth(theyear, themonth, w, l),
  356.  
  357.     
  358.     def formatmonth(self, theyear, themonth, w = 0, l = 0):
  359.         """
  360.         Return a month's calendar string (multi-line).
  361.         """
  362.         w = max(2, w)
  363.         l = max(1, l)
  364.         s = self.formatmonthname(theyear, themonth, 7 * (w + 1) - 1)
  365.         s = s.rstrip()
  366.         s += '\n' * l
  367.         s += self.formatweekheader(w).rstrip()
  368.         s += '\n' * l
  369.         for week in self.monthdays2calendar(theyear, themonth):
  370.             s += self.formatweek(week, w).rstrip()
  371.             s += '\n' * l
  372.         
  373.         return s
  374.  
  375.     
  376.     def formatyear(self, theyear, w = 2, l = 1, c = 6, m = 3):
  377.         """
  378.         Returns a year's calendar as a multi-line string.
  379.         """
  380.         w = max(2, w)
  381.         l = max(1, l)
  382.         c = max(2, c)
  383.         colwidth = (w + 1) * 7 - 1
  384.         v = []
  385.         a = v.append
  386.         a(repr(theyear).center(colwidth * m + c * (m - 1)).rstrip())
  387.         a('\n' * l)
  388.         header = self.formatweekheader(w)
  389.         for i, row in enumerate(self.yeardays2calendar(theyear, m)):
  390.             months = range(m * i + 1, min(m * (i + 1) + 1, 13))
  391.             a('\n' * l)
  392.             names = (lambda .0: pass)(months)
  393.             a(formatstring(names, colwidth, c).rstrip())
  394.             a('\n' * l)
  395.             headers = (lambda .0: pass)(months)
  396.             a(formatstring(headers, colwidth, c).rstrip())
  397.             a('\n' * l)
  398.             height = max((lambda .0: pass)(row))
  399.             for j in range(height):
  400.                 weeks = []
  401.                 for cal in row:
  402.                     if j >= len(cal):
  403.                         weeks.append('')
  404.                         continue
  405.                     weeks.append(self.formatweek(cal[j], w))
  406.                 
  407.                 a(formatstring(weeks, colwidth, c).rstrip())
  408.                 a('\n' * l)
  409.             
  410.         
  411.         return ''.join(v)
  412.  
  413.     
  414.     def pryear(self, theyear, w = 0, l = 0, c = 6, m = 3):
  415.         """Print a year's calendar."""
  416.         print self.formatyear(theyear, w, l, c, m)
  417.  
  418.  
  419.  
  420. class HTMLCalendar(Calendar):
  421.     '''
  422.     This calendar returns complete HTML pages.
  423.     '''
  424.     cssclasses = [
  425.         'mon',
  426.         'tue',
  427.         'wed',
  428.         'thu',
  429.         'fri',
  430.         'sat',
  431.         'sun']
  432.     
  433.     def formatday(self, day, weekday):
  434.         '''
  435.         Return a day as a table cell.
  436.         '''
  437.         if day == 0:
  438.             return '<td class="noday"> </td>'
  439.         return None % (self.cssclasses[weekday], day)
  440.  
  441.     
  442.     def formatweek(self, theweek):
  443.         '''
  444.         Return a complete week as a table row.
  445.         '''
  446.         s = (''.join,)((lambda .0: pass)(theweek))
  447.         return '<tr>%s</tr>' % s
  448.  
  449.     
  450.     def formatweekday(self, day):
  451.         '''
  452.         Return a weekday name as a table header.
  453.         '''
  454.         return '<th class="%s">%s</th>' % (self.cssclasses[day], day_abbr[day])
  455.  
  456.     
  457.     def formatweekheader(self):
  458.         '''
  459.         Return a header for a week as a table row.
  460.         '''
  461.         s = (''.join,)((lambda .0: pass)(self.iterweekdays()))
  462.         return '<tr>%s</tr>' % s
  463.  
  464.     
  465.     def formatmonthname(self, theyear, themonth, withyear = True):
  466.         '''
  467.         Return a month name as a table row.
  468.         '''
  469.         if withyear:
  470.             s = '%s %s' % (month_name[themonth], theyear)
  471.         else:
  472.             s = '%s' % month_name[themonth]
  473.         return '<tr><th colspan="7" class="month">%s</th></tr>' % s
  474.  
  475.     
  476.     def formatmonth(self, theyear, themonth, withyear = True):
  477.         '''
  478.         Return a formatted month as a table.
  479.         '''
  480.         v = []
  481.         a = v.append
  482.         a('<table border="0" cellpadding="0" cellspacing="0" class="month">')
  483.         a('\n')
  484.         a(self.formatmonthname(theyear, themonth, withyear = withyear))
  485.         a('\n')
  486.         a(self.formatweekheader())
  487.         a('\n')
  488.         for week in self.monthdays2calendar(theyear, themonth):
  489.             a(self.formatweek(week))
  490.             a('\n')
  491.         
  492.         a('</table>')
  493.         a('\n')
  494.         return ''.join(v)
  495.  
  496.     
  497.     def formatyear(self, theyear, width = 3):
  498.         '''
  499.         Return a formatted year as a table of tables.
  500.         '''
  501.         v = []
  502.         a = v.append
  503.         width = max(width, 1)
  504.         a('<table border="0" cellpadding="0" cellspacing="0" class="year">')
  505.         a('\n')
  506.         a('<tr><th colspan="%d" class="year">%s</th></tr>' % (width, theyear))
  507.         for i in range(January, January + 12, width):
  508.             months = range(i, min(i + width, 13))
  509.             a('<tr>')
  510.             for m in months:
  511.                 a('<td>')
  512.                 a(self.formatmonth(theyear, m, withyear = False))
  513.                 a('</td>')
  514.             
  515.             a('</tr>')
  516.         
  517.         a('</table>')
  518.         return ''.join(v)
  519.  
  520.     
  521.     def formatyearpage(self, theyear, width = 3, css = 'calendar.css', encoding = None):
  522.         '''
  523.         Return a formatted year as a complete HTML page.
  524.         '''
  525.         if encoding is None:
  526.             encoding = sys.getdefaultencoding()
  527.         v = []
  528.         a = v.append
  529.         a('<?xml version="1.0" encoding="%s"?>\n' % encoding)
  530.         a('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n')
  531.         a('<html>\n')
  532.         a('<head>\n')
  533.         a('<meta http-equiv="Content-Type" content="text/html; charset=%s" />\n' % encoding)
  534.         if css is not None:
  535.             a('<link rel="stylesheet" type="text/css" href="%s" />\n' % css)
  536.         a('<title>Calendar for %d</title>\n' % theyear)
  537.         a('</head>\n')
  538.         a('<body>\n')
  539.         a(self.formatyear(theyear, width))
  540.         a('</body>\n')
  541.         a('</html>\n')
  542.         return ''.join(v).encode(encoding, 'xmlcharrefreplace')
  543.  
  544.  
  545.  
  546. class TimeEncoding:
  547.     
  548.     def __init__(self, locale):
  549.         self.locale = locale
  550.  
  551.     
  552.     def __enter__(self):
  553.         self.oldlocale = _locale.getlocale(_locale.LC_TIME)
  554.         _locale.setlocale(_locale.LC_TIME, self.locale)
  555.         return _locale.getlocale(_locale.LC_TIME)[1]
  556.  
  557.     
  558.     def __exit__(self, *args):
  559.         _locale.setlocale(_locale.LC_TIME, self.oldlocale)
  560.  
  561.  
  562.  
  563. class LocaleTextCalendar(TextCalendar):
  564.     '''
  565.     This class can be passed a locale name in the constructor and will return
  566.     month and weekday names in the specified locale. If this locale includes
  567.     an encoding all strings containing month and weekday names will be returned
  568.     as unicode.
  569.     '''
  570.     
  571.     def __init__(self, firstweekday = 0, locale = None):
  572.         TextCalendar.__init__(self, firstweekday)
  573.         if locale is None:
  574.             locale = _locale.getdefaultlocale()
  575.         self.locale = locale
  576.  
  577.     
  578.     def formatweekday(self, day, width):
  579.         with TimeEncoding(self.locale) as encoding:
  580.             if width >= 9:
  581.                 names = day_name
  582.             else:
  583.                 names = day_abbr
  584.             name = names[day]
  585.             if encoding is not None:
  586.                 name = name.decode(encoding)
  587.             return name[:width].center(width)
  588.  
  589.     
  590.     def formatmonthname(self, theyear, themonth, width, withyear = True):
  591.         with TimeEncoding(self.locale) as encoding:
  592.             s = month_name[themonth]
  593.             if encoding is not None:
  594.                 s = s.decode(encoding)
  595.             if withyear:
  596.                 s = '%s %r' % (s, theyear)
  597.             return s.center(width)
  598.  
  599.  
  600.  
  601. class LocaleHTMLCalendar(HTMLCalendar):
  602.     '''
  603.     This class can be passed a locale name in the constructor and will return
  604.     month and weekday names in the specified locale. If this locale includes
  605.     an encoding all strings containing month and weekday names will be returned
  606.     as unicode.
  607.     '''
  608.     
  609.     def __init__(self, firstweekday = 0, locale = None):
  610.         HTMLCalendar.__init__(self, firstweekday)
  611.         if locale is None:
  612.             locale = _locale.getdefaultlocale()
  613.         self.locale = locale
  614.  
  615.     
  616.     def formatweekday(self, day):
  617.         with TimeEncoding(self.locale) as encoding:
  618.             s = day_abbr[day]
  619.             if encoding is not None:
  620.                 s = s.decode(encoding)
  621.             return '<th class="%s">%s</th>' % (self.cssclasses[day], s)
  622.  
  623.     
  624.     def formatmonthname(self, theyear, themonth, withyear = True):
  625.         with TimeEncoding(self.locale) as encoding:
  626.             s = month_name[themonth]
  627.             if encoding is not None:
  628.                 s = s.decode(encoding)
  629.             if withyear:
  630.                 s = '%s %s' % (s, theyear)
  631.             return '<tr><th colspan="7" class="month">%s</th></tr>' % s
  632.  
  633.  
  634. c = TextCalendar()
  635. firstweekday = c.getfirstweekday
  636.  
  637. def setfirstweekday(firstweekday):
  638.     
  639.     try:
  640.         firstweekday.__index__
  641.     except AttributeError:
  642.         raise IllegalWeekdayError(firstweekday)
  643.  
  644.     if firstweekday <= firstweekday:
  645.         pass
  646.     elif not firstweekday <= SUNDAY:
  647.         raise IllegalWeekdayError(firstweekday)
  648.     c.firstweekday = firstweekday
  649.  
  650. monthcalendar = c.monthdayscalendar
  651. prweek = c.prweek
  652. week = c.formatweek
  653. weekheader = c.formatweekheader
  654. prmonth = c.prmonth
  655. month = c.formatmonth
  656. calendar = c.formatyear
  657. prcal = c.pryear
  658. _colwidth = 20
  659. _spacing = 6
  660.  
  661. def format(cols, colwidth = _colwidth, spacing = _spacing):
  662.     '''Prints multi-column formatting for year calendars'''
  663.     print formatstring(cols, colwidth, spacing)
  664.  
  665.  
  666. def formatstring(cols, colwidth = _colwidth, spacing = _spacing):
  667.     '''Returns a string formatted from n strings, centered within n columns.'''
  668.     spacing *= ' '
  669.     return (spacing.join,)((lambda .0: pass)(cols))
  670.  
  671. EPOCH = 1970
  672. _EPOCH_ORD = datetime.date(EPOCH, 1, 1).toordinal()
  673.  
  674. def timegm(tuple):
  675.     '''Unrelated but handy function to calculate Unix timestamp from GMT.'''
  676.     (year, month, day, hour, minute, second) = tuple[:6]
  677.     days = (datetime.date(year, month, 1).toordinal() - _EPOCH_ORD) + day - 1
  678.     hours = days * 24 + hour
  679.     minutes = hours * 60 + minute
  680.     seconds = minutes * 60 + second
  681.     return seconds
  682.  
  683.  
  684. def main(args):
  685.     import optparse as optparse
  686.     parser = optparse.OptionParser(usage = 'usage: %prog [options] [year [month]]')
  687.     parser.add_option('-w', '--width', dest = 'width', type = 'int', default = 2, help = 'width of date column (default 2, text only)')
  688.     parser.add_option('-l', '--lines', dest = 'lines', type = 'int', default = 1, help = 'number of lines for each week (default 1, text only)')
  689.     parser.add_option('-s', '--spacing', dest = 'spacing', type = 'int', default = 6, help = 'spacing between months (default 6, text only)')
  690.     parser.add_option('-m', '--months', dest = 'months', type = 'int', default = 3, help = 'months per row (default 3, text only)')
  691.     parser.add_option('-c', '--css', dest = 'css', default = 'calendar.css', help = 'CSS to use for page (html only)')
  692.     parser.add_option('-L', '--locale', dest = 'locale', default = None, help = 'locale to be used from month and weekday names')
  693.     parser.add_option('-e', '--encoding', dest = 'encoding', default = None, help = 'Encoding to use for output')
  694.     parser.add_option('-t', '--type', dest = 'type', default = 'text', choices = ('text', 'html'), help = 'output type (text or html)')
  695.     (options, args) = parser.parse_args(args)
  696.     if options.locale and not (options.encoding):
  697.         parser.error('if --locale is specified --encoding is required')
  698.         sys.exit(1)
  699.     locale = (options.locale, options.encoding)
  700.     if options.type == 'html':
  701.         if options.locale:
  702.             cal = LocaleHTMLCalendar(locale = locale)
  703.         else:
  704.             cal = HTMLCalendar()
  705.         encoding = options.encoding
  706.         if encoding is None:
  707.             encoding = sys.getdefaultencoding()
  708.         optdict = dict(encoding = encoding, css = options.css)
  709.         if len(args) == 1:
  710.             print cal.formatyearpage(datetime.date.today().year, **optdict)
  711.         elif len(args) == 2:
  712.             print cal.formatyearpage(int(args[1]), **optdict)
  713.         else:
  714.             parser.error('incorrect number of arguments')
  715.             sys.exit(1)
  716.     elif options.locale:
  717.         cal = LocaleTextCalendar(locale = locale)
  718.     else:
  719.         cal = TextCalendar()
  720.     optdict = dict(w = options.width, l = options.lines)
  721.     if len(args) != 3:
  722.         optdict['c'] = options.spacing
  723.         optdict['m'] = options.months
  724.     if len(args) == 1:
  725.         result = cal.formatyear(datetime.date.today().year, **optdict)
  726.     elif len(args) == 2:
  727.         result = cal.formatyear(int(args[1]), **optdict)
  728.     elif len(args) == 3:
  729.         result = cal.formatmonth(int(args[1]), int(args[2]), **optdict)
  730.     else:
  731.         parser.error('incorrect number of arguments')
  732.         sys.exit(1)
  733.     if options.encoding:
  734.         result = result.encode(options.encoding)
  735.     print result
  736.  
  737. if __name__ == '__main__':
  738.     main(sys.argv)
  739.